home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / fish / 751-760 / 751 / yearprintq / src / dmakefile < prev    next >
Makefile  |  1995-03-18  |  1KB  |  40 lines

  1. # $VER: DMakefile_for_YearPrintQ 2.5 (1.9.92)
  2. # (c)1992 by Dieter Temme
  3.  
  4. # compilation with DICE
  5. #COMP= dcc -c -ms -proto -r
  6. #LINK= dcc
  7. #LLIB=
  8.  
  9. # compilation with Aztec-C (5.2a)
  10. COMP= cc -ms -pp -so -wcn
  11. LINK= ln
  12. LLIB= +l CLIBS:amiga.lib +l -lc
  13. # compilation with Aztec-C for SDB
  14. #COMP= cc -ms -pp -wcn -bs -dDEBUG
  15. #LINK= ln -g
  16.  
  17. /YearPrintQ: RAM:YearPrintQ.o
  18.     $(LINK) -o %(left) %(right) $(LLIB)
  19.  
  20. RAM:YearPrintQ.o: YearPrintQ2_5.c YearPrintQ.h amigacompq.h
  21.     $(COMP) %(*.c) -o %(left)
  22.  
  23. empty.ct: YearPrintQ.cd
  24.     CatComp %(right) CTFILE %(left)
  25.  
  26. YearPrintQ.h: YearPrintQ.cd
  27.     CatComp %(right) CFILE %(left)
  28.  
  29. /catalogs/deutsch/YearPrintQ.catalog: YearPrintQ.cd deutsch.ct
  30.     CatComp %(right) CATALOG %(left)
  31.  
  32. /catalogs/français/YearPrintQ.catalog: YearPrintQ.cd français.ct
  33.     CatComp %(right) CATALOG %(left)
  34.  
  35. all: /YearPrintQ empty.ct /catalogs/deutsch/YearPrintQ.catalog \
  36.      /catalogs/français/YearPrintQ.catalog
  37.  
  38. clean:
  39.     delete /YearPrint RAM:YearPrintQ.o YearPrintQ.h empty.ct catalogs/#?/#?.catalog
  40.